home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
archivrs
/
general
/
lhasrc.exe
/
TYPEDEF.H
< prev
next >
Wrap
C/C++ Source or Header
|
1990-09-30
|
395b
|
11 lines
/***********************************************************
typedef.h
***********************************************************/
#ifndef _TYPEDEF_H_
#define _TYPEDEF_H_
typedef unsigned char uchar; /* 8 bits */
typedef unsigned int uint; /* 16 - 32 bits or more */
typedef unsigned short ushort; /* 16 bits */
typedef unsigned long ulong; /* 32 bits or more */
#endif